@charset "UTF-8";
* {
  box-sizing: border-box;
  font-family: "Murecho", sans-serif;
  color: #223F84;
}

html {
  margin: 0 !important;
}

body {
  padding: 0;
  margin: 0 auto;
  max-width: 1920px;
  height: 100%;
  overflow-x: hidden;
  background: linear-gradient(90deg, #223F84 0%, #05A1AC 100%);
}

.container {
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}

.reset-margin {
  margin: 0 !important;
}

.reset-margin-bottom {
  margin-bottom: 0 !important;
}

.reset-margin-top {
  margin-top: 0 !important;
}

.small-margin-top {
  margin-top: 10px !important;
}

section {
  max-width: 100%;
  width: 100%;
}

.not-found-page {
  margin: 100px 0 80px 0;
}
@media (max-width: 1024px) {
  .not-found-page {
    margin: 60px 0 45px 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p, ul, li {
  margin: 0;
  padding: 0;
}

p {
  font-weight: 500;
  font-size: 1.5rem;
}

h1 {
  font-size: 6rem;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 4.25rem;
  }
}

h2 {
  font-size: 4rem;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1400px) {
  h2 {
    font-size: 3.625rem;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 440px) {
  h2 {
    font-size: 2.125rem;
  }
}

h3 {
  font-size: 3rem;
  line-height: 1;
  margin: 0;
}
@media (max-width: 600px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 1024px) {
  h4 {
    font-size: 1.125rem;
  }
}
@media (max-width: 600px) {
  h4 {
    font-size: 1rem;
  }
}
@media (max-width: 440px) {
  h4 {
    font-size: 0.875rem;
  }
}

footer {
  padding: 95px 0;
  background: linear-gradient(to right, #5BDBDA 0%, #05A1AC 100%);
}
@media (max-width: 1024px) {
  footer {
    padding: 37px 0 60px 0;
  }
}
footer .container {
  max-width: 1350px;
}
footer .container .wrapper .editor-wrapper {
  text-align: center;
}
footer .container .wrapper .editor-wrapper * {
  color: #ffffff;
  margin-bottom: 24px;
}
@media (max-width: 440px) {
  footer .container .wrapper .editor-wrapper * {
    margin-bottom: 17px;
  }
}
footer .container .wrapper .editor-wrapper *:last-child {
  margin-bottom: 0;
}
footer .container .wrapper .editor-wrapper p {
  font-size: 1.25rem;
  font-weight: 300;
}
@media (max-width: 1024px) {
  footer .container .wrapper .editor-wrapper p {
    font-size: 1rem;
  }
  footer .container .wrapper .editor-wrapper p br {
    display: none !important;
  }
}
@media (max-width: 440px) {
  footer .container .wrapper .editor-wrapper p {
    font-size: 0.625rem;
  }
}
footer .container .wrapper .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
@media (max-width: 440px) {
  footer .container .wrapper .socials {
    margin: 18px 0 20px 0;
  }
}
footer .container .wrapper .socials .social {
  margin-right: 70px;
}
@media (max-width: 440px) {
  footer .container .wrapper .socials .social {
    margin-right: 34px;
  }
}
footer .container .wrapper .socials .social:last-of-type {
  margin-right: 0;
}
footer .container .wrapper .socials .social svg, footer .container .wrapper .socials .social img {
  transition: 0.3s;
}
@media (max-width: 440px) {
  footer .container .wrapper .socials .social svg, footer .container .wrapper .socials .social img {
    max-height: 27px;
  }
}
footer .container .wrapper .socials .social:hover svg, footer .container .wrapper .socials .social:hover img {
  transform: scale(1.1);
}
footer .container .wrapper .copy {
  text-align: center;
}
footer .container .wrapper .copy p {
  font-weight: 300;
  color: #ffffff;
  font-size: 0.75rem;
}
@media (max-width: 440px) {
  footer .container .wrapper .copy p {
    font-size: 0.625rem;
  }
}

.copy-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  color: #05A1AC;
  padding: 20px 30px;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  font-size: 1.5rem;
  font-weight: 600;
}

.copy-popup.show {
  opacity: 1;
}

.banner .container {
  position: relative;
  padding: 0;
}
.banner .container .logo-patron {
  display: flex;
  align-items: center;
  position: absolute;
  top: 34px;
  left: 36px;
}
@media (max-width: 1024px) {
  .banner .container .logo-patron {
    left: 15px;
    bottom: 5px;
    top: initial;
  }
}
.banner .container .logo-patron p {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .banner .container .logo-patron p {
    font-size: 0.75rem;
  }
}
.banner .container .logo-patron .line {
  background-color: #ffffff;
  height: 31px;
  width: 2px;
  margin-left: 19px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .banner .container .logo-patron .line {
    height: 14px;
    width: 1px;
    margin: 0 8px;
  }
}
@media (max-width: 1024px) {
  .banner .container .logo-patron img {
    width: 144px;
    height: 26px;
    object-fit: contain;
  }
}
.banner .container header {
  position: absolute;
  top: 33px;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #ffffff;
  transform: translateY(-200%);
  transition: 0.3s;
}
.banner .container header.active {
  transform: translateY(0);
}
@media (min-width: 1025px) {
  .banner .container header {
    display: none;
  }
}
.banner .container header nav ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #05A1AC;
  text-align: center;
  padding: 15px;
}
@media (min-width: 1025px) {
  .banner .container .mobile-hamburger {
    display: none;
  }
}
.banner .container .mobile-hamburger .hamburger-wrap {
  position: absolute;
  z-index: 10;
  transition: 0.3s ease-in-out all;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  margin-top: 5px;
  margin-left: 14px;
}
.banner .container .mobile-hamburger .hamburger-wrap:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 1px;
}
.banner .container .mobile-hamburger .hamburger-wrap .hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.banner .container .mobile-hamburger .hamburger-wrap .hamburger:hover {
  cursor: pointer;
}
.banner .container .mobile-hamburger .hamburger-wrap .hamburger {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.banner .container .mobile-hamburger .hamburger-wrap .hamburger.is-active {
  animation: smallbig 0.6s forwards;
}
@keyframes smallbig {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}
.banner .container .mobile-hamburger .hamburger-wrap .hamburger.is-active .line:nth-child(1),
.banner .container .mobile-hamburger .hamburger-wrap .hamburger.is-active .line:nth-child(2),
.banner .container .mobile-hamburger .hamburger-wrap .hamburger.is-active .line:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.banner .container .mobile-hamburger .hamburger-wrap .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.banner .container .mobile-hamburger .hamburger-wrap .hamburger.is-active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.banner .container .mobile-hamburger .hamburger-wrap .hamburger.is-active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.banner .container .bg {
  max-height: 940px;
  width: 100%;
}
.banner .container .bg img {
  width: 100%;
  max-height: 940px;
  object-fit: cover;
  display: block;
}
.banner .container .logo {
  position: absolute;
  right: 36px;
  top: 3vw;
}
@media (max-width: 1024px) {
  .banner .container .logo {
    top: 30px;
    right: 14px;
  }
}
@media (max-width: 1024px) {
  .banner .container .logo img {
    width: 77px;
    height: 12px;
  }
}
.banner .container .editor-wrapper {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 1550px) {
  .banner .container .editor-wrapper {
    top: 120px;
  }
}
@media (max-width: 1024px) {
  .banner .container .editor-wrapper {
    top: 40px;
  }
}
@media (max-width: 600px) {
  .banner .container .editor-wrapper {
    top: 8px;
    width: 100%;
  }
}
.banner .container .editor-wrapper * {
  color: #ffffff;
  line-height: 1;
}
.banner .container .editor-wrapper h1 {
  font-weight: 700;
}
@media (max-width: 600px) {
  .banner .container .editor-wrapper h1 {
    font-size: 1.875rem;
  }
}
.banner .container .editor-wrapper h2 {
  font-weight: 600;
}
@media (max-width: 600px) {
  .banner .container .editor-wrapper h2 {
    font-size: 1.25rem;
  }
}

.header-menu {
  background-color: transparent;
  padding: 19px 0;
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .header-menu {
    padding: 5px;
  }
  .header-menu .container {
    display: none !important;
  }
}
.header-menu .container nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  width: 100%;
}
.header-menu .container nav ul li {
  margin: 0 29px;
}
@media (max-width: 1800px) {
  .header-menu .container nav ul li {
    margin: 0 15px;
  }
  .header-menu .container nav ul li:first-of-type {
    margin-left: 0;
  }
  .header-menu .container nav ul li:last-of-type {
    margin-right: 0;
  }
}
.header-menu .container nav ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  color: #ffffff;
  padding: 19px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  border-radius: 50px;
  min-width: 398px;
  border: 1px solid #05A1AC;
  color: #05A1AC;
}
@media (max-width: 1750px) {
  .header-menu .container nav ul li a {
    padding: 15px;
    min-width: 360px;
  }
}
@media (max-width: 1200px) {
  .header-menu .container nav ul li a {
    font-size: 0.875rem;
    min-width: 300px;
  }
}
@media (max-width: 1100px) {
  .header-menu .container nav ul li a {
    font-size: 0.75rem;
  }
}
@media (max-width: 1024px) {
  .header-menu .container nav ul li a {
    font-size: 1rem;
  }
}
.header-menu .container nav ul li a:hover {
  color: #ffffff;
  background: linear-gradient(to right, #05A1AC 0%, #30C0CA 100%);
}
.header-menu .container nav ul li a.active {
  color: #ffffff;
  background: linear-gradient(to right, #05A1AC 0%, #30C0CA 100%);
}

.boxes {
  padding: 135px 0 220px 0;
}
@media (max-width: 600px) {
  .boxes {
    padding: 45px 0 70px 0;
  }
}
.boxes .editor-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
}
@media (max-width: 1068px) {
  .boxes .editor-wrapper {
    gap: 30px;
  }
}
.boxes .editor-wrapper * {
  color: #ffffff;
}
@media (max-width: 440px) {
  .boxes .editor-wrapper h2 {
    font-size: 2.5rem !important;
  }
}
.boxes .editor-wrapper h1 strong, .boxes .editor-wrapper h2 strong, .boxes .editor-wrapper h3 strong, .boxes .editor-wrapper h4 strong, .boxes .editor-wrapper h5 strong, .boxes .editor-wrapper h6 strong {
  color: #CD9F55;
  font-size: 6rem;
}
@media (max-width: 600px) {
  .boxes .editor-wrapper h1 strong, .boxes .editor-wrapper h2 strong, .boxes .editor-wrapper h3 strong, .boxes .editor-wrapper h4 strong, .boxes .editor-wrapper h5 strong, .boxes .editor-wrapper h6 strong {
    font-size: 4rem;
  }
}
.boxes .tiles-wrapper {
  margin-top: 90px;
  display: flex;
  max-width: 1615px;
  width: 100%;
  justify-content: center;
  margin: 90px auto 0 auto;
}
@media (max-width: 1068px) {
  .boxes .tiles-wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
  }
}
.boxes .tiles-wrapper .tile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  background-color: #CD9F55;
  padding: 50px;
  height: 100%;
  border-radius: 30px;
  min-height: 375px;
  position: relative;
}
@media (max-width: 1650px) {
  .boxes .tiles-wrapper .tile {
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  .boxes .tiles-wrapper .tile {
    min-height: 330px;
  }
}
@media (max-width: 1068px) {
  .boxes .tiles-wrapper .tile {
    min-height: auto;
    padding: 35px 30px;
    max-width: 350px;
    margin-top: 140px !important;
  }
  .boxes .tiles-wrapper .tile:first-of-type {
    margin-top: 0 !important;
  }
}
.boxes .tiles-wrapper .tile:before {
  content: "";
  position: absolute;
  bottom: -90px; /* przesunięcie trójkąta nad element */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 60px solid transparent; /* 120 / 2 */
  border-right: 60px solid transparent; /* 120 / 2 */
  border-top: 90px solid #CD9F55; /* Wysokość i kolor trójkąta */
}
@media (max-width: 1068px) {
  .boxes .tiles-wrapper .tile:before {
    bottom: -89px;
  }
}
.boxes .tiles-wrapper .tile:nth-child(2) {
  margin: 0 115px;
}
@media (max-width: 1650px) {
  .boxes .tiles-wrapper .tile:nth-child(2) {
    margin: 0 50px;
  }
}
@media (max-width: 1200px) {
  .boxes .tiles-wrapper .tile:nth-child(2) {
    margin: 0 20px;
  }
}
.boxes .tiles-wrapper .tile .icon {
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .boxes .tiles-wrapper .tile .icon {
    margin-bottom: 25px;
  }
}
.boxes .tiles-wrapper .tile .desc {
  text-align: center;
  max-width: 340px;
}
.boxes .tiles-wrapper .tile .desc p {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 1;
}
@media (max-width: 1120px) {
  .boxes .tiles-wrapper .tile .desc p {
    font-size: 1.5rem;
  }
}
.boxes .header-wrapper {
  text-align: center;
  margin: 240px 0 120px 0;
}
@media (max-width: 1068px) {
  .boxes .header-wrapper {
    margin: 160px 0 110px 0;
  }
}
.boxes .header-wrapper h2 {
  font-size: 6rem;
  color: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 1068px) {
  .boxes .header-wrapper h2 {
    font-size: 8.25vw;
  }
}
@media (max-width: 600px) {
  .boxes .header-wrapper h2 {
    font-size: 8.5vw;
  }
}
@media (max-width: 420px) {
  .boxes .header-wrapper h2 {
    font-size: 8.875vw;
  }
}
.boxes .icons-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 86px; /* row-gap column-gap */
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .boxes .icons-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 84px 0;
  }
}
.boxes .icons-wrapper .icon-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.boxes .icons-wrapper .icon-item .icon img {
  max-width: 200px;
  max-height: 200px;
}
.boxes .icons-wrapper .icon-item .desc {
  text-align: center;
  margin-top: 35px;
}
@media (max-width: 600px) {
  .boxes .icons-wrapper .icon-item .desc {
    margin-top: 25px;
  }
}
.boxes .icons-wrapper .icon-item .desc p {
  color: #ffffff;
  font-size: 2.125rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1068px) {
  .boxes .icons-wrapper .icon-item .desc p {
    font-size: 1.5rem;
  }
}

.radius-info {
  background-color: #ffffff;
  padding: 218px 0 215px 0;
}
@media (max-width: 1200px) {
  .radius-info {
    padding: 67px 0;
  }
}
.radius-info .container .wrapper .editor-wrapper {
  text-align: center;
  max-width: 1130px;
  margin: 0 auto;
}
.radius-info .container .wrapper .editor-wrapper * {
  text-transform: uppercase;
}
.radius-info .container .wrapper .items-wrapper {
  max-width: 1530px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 115px auto 0 auto;
}
@media (max-width: 1200px) {
  .radius-info .container .wrapper .items-wrapper {
    flex-direction: column;
    margin-top: 0;
  }
}
.radius-info .container .wrapper .items-wrapper .radius-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 382px;
  height: 382px;
  background: linear-gradient(90deg, #223F84 0%, #05A1AC 100%);
  border-radius: 50%;
  padding: 15px;
}
@media (max-width: 1200px) {
  .radius-info .container .wrapper .items-wrapper .radius-item {
    margin-top: 80px !important;
  }
}
@media (max-width: 440px) {
  .radius-info .container .wrapper .items-wrapper .radius-item {
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .radius-info .container .wrapper .items-wrapper .radius-item {
    width: 300px;
    height: 300px;
  }
}
.radius-info .container .wrapper .items-wrapper .radius-item:nth-of-type(even) {
  margin: 0 190px;
}
@media (max-width: 1550px) {
  .radius-info .container .wrapper .items-wrapper .radius-item:nth-of-type(even) {
    margin: 0 100px;
  }
}
@media (max-width: 1550px) {
  .radius-info .container .wrapper .items-wrapper .radius-item:nth-of-type(even) {
    margin: 0 50px;
  }
}
@media (max-width: 1550px) {
  .radius-info .container .wrapper .items-wrapper .radius-item:nth-of-type(even) {
    margin: 0 20px;
  }
}
@media (max-width: 1200px) {
  .radius-info .container .wrapper .items-wrapper .radius-item:nth-of-type(even) {
    margin: 0;
  }
}
.radius-info .container .wrapper .items-wrapper .radius-item * {
  color: #ffffff;
  max-width: 325px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1200px) {
  .radius-info .container .wrapper .items-wrapper .radius-item * {
    font-size: 3rem;
  }
}
@media (max-width: 420px) {
  .radius-info .container .wrapper .items-wrapper .radius-item * {
    font-size: 2.625rem;
  }
}
.radius-info .container .wrapper .items-wrapper .radius-item p {
  margin-top: 14px;
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 420px) {
  .radius-info .container .wrapper .items-wrapper .radius-item p {
    font-size: 1.25rem;
  }
}

.persons {
  background-color: #ffffff;
}
.persons .bg {
  border-radius: 600px 600px 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(112.15deg, #F4BD63 35%, #FAC877 46.42%, #FFDBA1 56.7%, #CD9F55 82.5%);
}
@media (max-width: 440px) {
  .persons .bg {
    border-radius: 200px 200px 0 0;
  }
}
.persons .container {
  max-width: 1215px;
}
.persons .container .wrapper {
  padding: 150px 0 140px 0;
}
@media (max-width: 1500px) {
  .persons .container .wrapper {
    padding-top: 200px;
  }
}
@media (max-width: 440px) {
  .persons .container .wrapper {
    padding: 138px 0 65px 0;
  }
}
@media (max-width: 1400px) {
  .persons .container .wrapper .header {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 440px) {
  .persons .container .wrapper .header {
    max-width: 100%;
  }
}
.persons .container .wrapper .header * {
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-size: 6rem;
}
@media (max-width: 1500px) {
  .persons .container .wrapper .header * {
    font-size: 6.25vw;
  }
}
@media (max-width: 440px) {
  .persons .container .wrapper .header * {
    font-size: 2.5rem;
  }
}
.persons .container .wrapper .persons-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media (max-width: 1100px) {
  .persons .container .wrapper .persons-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 440px) {
  .persons .container .wrapper .persons-wrapper {
    margin-top: 55px;
  }
}
.persons .container .wrapper .persons-wrapper .person {
  margin: 0 60px;
}
@media (max-width: 1100px) {
  .persons .container .wrapper .persons-wrapper .person {
    margin: 0 0 80px 0;
  }
  .persons .container .wrapper .persons-wrapper .person:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 1100px) {
  .persons .container .wrapper .persons-wrapper .person .avatar {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 440px) {
  .persons .container .wrapper .persons-wrapper .person .avatar {
    margin: 0 0 40px 0;
  }
}
.persons .container .wrapper .persons-wrapper .person .avatar img {
  max-width: 440px;
  width: 100%;
  height: 550px;
  border-radius: 40px;
  object-fit: cover;
}
@media (max-width: 440px) {
  .persons .container .wrapper .persons-wrapper .person .avatar img {
    height: 325px;
    width: 260px;
    border-radius: 150px;
  }
}
.persons .container .wrapper .persons-wrapper .person .name {
  max-width: 375px;
  margin: 40px auto 0 auto;
}
.persons .container .wrapper .persons-wrapper .person .name * {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  white-space: pre-wrap;
}
@media (max-width: 440px) {
  .persons .container .wrapper .persons-wrapper .person .name * {
    font-size: 2rem;
  }
}
.persons .container .wrapper .persons-wrapper .person .desc {
  margin-top: 30px;
}
@media (max-width: 440px) {
  .persons .container .wrapper .persons-wrapper .person .desc {
    margin-top: 16px;
  }
}
.persons .container .wrapper .persons-wrapper .person .desc p {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 440px) {
  .persons .container .wrapper .persons-wrapper .person .desc p {
    font-size: 1.25rem;
  }
}

.player {
  overflow-x: hidden;
}
.player .container {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  min-height: 900px;
}
@media (max-width: 1400px) {
  .player .container {
    min-height: auto;
  }
}
.player .container .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media (max-width: 440px) {
  .player .container .bg.desktop {
    display: none;
  }
}
.player .container .bg.mobile {
  display: none;
}
@media (max-width: 440px) {
  .player .container .bg.mobile {
    display: block;
  }
}
.player .container > .row {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 1150px) {
  .player .container > .row {
    flex-direction: column;
  }
}
.player .container > .row .title {
  margin: 0 100px;
  max-width: 612px;
  min-width: 612px;
  width: 100%;
}
@media (max-width: 1500px) {
  .player .container > .row .title {
    max-width: 500px;
    min-width: 500px;
  }
}
@media (max-width: 1150px) {
  .player .container > .row .title {
    padding: 132px 65px 129px 65px;
    max-width: 100%;
    min-width: 100%;
  }
}
.player .container > .row .title h2 {
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 440px) {
  .player .container > .row .title h2 {
    font-size: 2.125rem;
  }
}
.player .container > .row .video audio {
  display: none;
}
.player .container > .row .blur-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 900px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  padding: 200px 88px;
  max-width: calc(100vw - 612px);
}
@media (max-width: 1650px) {
  .player .container > .row .blur-bg {
    padding: 150px 40px;
  }
}
@media (max-width: 1500px) {
  .player .container > .row .blur-bg {
    max-width: calc(100vw - 500px);
  }
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg {
    min-height: auto;
    padding: 100px 30px;
  }
}
@media (max-width: 1150px) {
  .player .container > .row .blur-bg {
    max-width: 100%;
    padding: 100px 70px;
  }
}
@media (max-width: 440px) {
  .player .container > .row .blur-bg {
    padding: 50px 35px;
  }
}
.player .container > .row .blur-bg .actions {
  width: 100%;
  min-height: 495px;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions {
    min-height: auto;
  }
}
.player .container > .row .blur-bg .actions .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.player .container > .row .blur-bg .actions .row .title-player h2, .player .container > .row .blur-bg .actions .row .title-player p {
  text-align: left;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 440px) {
  .player .container > .row .blur-bg .actions .row .title-player h2, .player .container > .row .blur-bg .actions .row .title-player p {
    font-size: 1.875rem;
  }
}
.player .container > .row .blur-bg .actions .row .title-player p {
  font-size: 30px;
  font-weight: 400;
}
@media (max-width: 440px) {
  .player .container > .row .blur-bg .actions .row .title-player p {
    font-size: 1rem;
  }
}
.player .container > .row .blur-bg .actions .row .icons {
  display: flex;
}
.player .container > .row .blur-bg .actions .row .icons .share {
  cursor: pointer;
}
.player .container > .row .blur-bg .actions .row .icons .share:hover svg path {
  fill: #223F84;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .icons .share svg {
    max-width: 50px;
  }
}
@media (max-width: 650px) {
  .player .container > .row .blur-bg .actions .row .icons .share svg {
    max-width: 41px;
  }
}
.player .container > .row .blur-bg .actions .row .icons .share svg path {
  transition: 0.3s;
}
.player .container > .row .blur-bg .actions .row .icons .list {
  cursor: pointer;
}
.player .container > .row .blur-bg .actions .row .video-timeline {
  width: 100%;
  max-width: 287px;
  margin: 80px 0 90px 0;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .video-timeline {
    margin: 50px 0 60px 0;
  }
}
@media (max-width: 440px) {
  .player .container > .row .blur-bg .actions .row .video-timeline {
    margin: 125px 0 25px 0;
  }
}
.player .container > .row .blur-bg .actions .row .video-timeline .timeline-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.3) 30% 100%);
  border-radius: 3px;
  outline: none;
  position: relative;
}
.player .container > .row .blur-bg .actions .row .video-timeline .timeline-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.player .container > .row .blur-bg .actions .row .video-timeline .timeline-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.player .container > .row .blur-bg .actions .row .status {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  width: 178px;
  height: 178px;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .status {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .status {
    width: 92px;
    height: 92px;
  }
}
.player .container > .row .blur-bg .actions .row .status .play, .player .container > .row .blur-bg .actions .row .status .stop {
  display: none;
}
.player .container > .row .blur-bg .actions .row .status .play.active, .player .container > .row .blur-bg .actions .row .status .stop.active {
  display: block;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .status .stop svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 650px) {
  .player .container > .row .blur-bg .actions .row .status .play svg path {
    width: 41px;
    height: 41px;
  }
}
.player .container > .row .blur-bg .actions .row .repeat svg path, .player .container > .row .blur-bg .actions .row .back svg path, .player .container > .row .blur-bg .actions .row .next svg path, .player .container > .row .blur-bg .actions .row .voice svg path {
  transition: 0.3s;
}
.player .container > .row .blur-bg .actions .row .repeat:hover svg path, .player .container > .row .blur-bg .actions .row .back:hover svg path, .player .container > .row .blur-bg .actions .row .next:hover svg path, .player .container > .row .blur-bg .actions .row .voice:hover svg path {
  fill: #223F84;
}
.player .container > .row .blur-bg .actions .row .repeat {
  cursor: pointer;
}
.player .container > .row .blur-bg .actions .row .repeat.active svg path {
  fill: #223F84;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .repeat svg {
    width: 80px;
  }
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .repeat svg {
    width: 37px;
  }
}
.player .container > .row .blur-bg .actions .row .repeat svg path {
  transition: 0.3s;
}
.player .container > .row .blur-bg .actions .row .back {
  cursor: pointer;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .back svg {
    width: 80px;
  }
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .back svg {
    width: 41px;
  }
}
.player .container > .row .blur-bg .actions .row .next {
  cursor: pointer;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .next svg {
    width: 80px;
  }
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .next svg {
    width: 41px;
  }
}
.player .container > .row .blur-bg .actions .row .voice {
  cursor: pointer;
  position: relative;
}
.player .container > .row .blur-bg .actions .row .voice.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 5px;
  height: 100%;
  transform: rotate(45deg) translate(-50%);
  background-color: #b41c1c;
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .voice svg {
    width: 80px;
  }
}
@media (max-width: 1400px) {
  .player .container > .row .blur-bg .actions .row .voice svg {
    width: 36px;
  }
}

.image-url {
  padding-top: 40px;
  background-color: #ffffff;
}
@media (max-width: 440px) {
  .image-url {
    padding-top: 5px;
  }
}
.image-url .bg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 440px) {
  .image-url .bg img.desktop {
    display: none;
  }
}
.image-url .bg img.mobile {
  display: none;
}
@media (max-width: 440px) {
  .image-url .bg img.mobile {
    display: block;
  }
}